You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

edkit

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

edkit

Lightweight Rich Text Editor toolkit based on TypeScript

1.2.7
latest
Source
npmnpm
Version published
Weekly downloads
80
-17.53%
Maintainers
1
Weekly downloads
 
Created
Source

Edkit

Lightweight Rich Text Editor toolkit based on TypeScript

NPM Dependency CI & CD

NPM

Demo

https://idea2app.github.io/Edkit/React/

Usage

Application developers

Library developers

Example with React

Features

Editor class decorator

@editor is compatible with Web components, React & other kinds of class components.

Web components

import { EditorComponent, editor } from 'edkit';

export interface HTMLEditor extends EditorComponent {}

@editor
export class HTMLEditor extends HTMLElement implements EditorComponent {
    // your class members...
}

React

import { Component } from 'react';
import { editor, EditorComponent } from 'edkit';

export interface HTMLEditor extends EditorComponent {}

@editor
export class HTMLEditor extends Component implements EditorComponent {
    // your class members...
}

Tool base classes

Text

Color

Layout

Media

Control

Extra

Keywords

rich-text

FAQs

Package last updated on 14 May 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts